home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / ISSUE22 / CLINIC / NewMsg.dpr < prev    next >
Encoding:
Text File  |  1997-04-25  |  192 b   |  14 lines

  1. program NewMsg;
  2.  
  3. uses
  4.   Forms,
  5.   NewMsgU in 'NewMsgU.pas' {Form1},
  6.   MsgDlgs in 'MsgDlgs.pas';
  7.  
  8. {$R *.RES}
  9.  
  10. begin
  11.   Application.CreateForm(TForm1, Form1);
  12.   Application.Run;
  13. end.
  14.